home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / init / cryptdisks-enable.conf < prev    next >
Text File  |  2009-10-14  |  435b  |  25 lines

  1. # cryptdisks - enable encrypted block devices
  2. #
  3. # This is a bit of a kludge, we should do this per-block device in a udev
  4. # rule.  But this should work for now.
  5.  
  6. description    "enable encrypted block devices"
  7.  
  8. start on stopped udevtrigger
  9.  
  10. task
  11. console output
  12.  
  13. script
  14.     . /lib/cryptsetup/cryptdisks.functions
  15.  
  16.     case "$CRYPTDISKS_ENABLE" in
  17.     [Nn]*)
  18.         exit 1
  19.         ;;
  20.     esac
  21.  
  22.     INITSTATE="init"
  23.     do_start
  24. end script
  25.